@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
html {
    scroll-behavior: smooth;
}
body {
  margin: 0;
}
h1.site-title {
  display: none;
}
div.studio-privacy-page {
  font-family:
    Inter,
    Libre Franklin,
    Segoe UI,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
}
.studio-privacy-page {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 8% auto 0;
    padding: 0 20px 40px;
    flex-wrap: wrap;
}
.studio-privacy-page .pp-information {
    flex: 1;
    min-width: 0;
}
.custom-breadcrumb {
    flex: 0 0 100%;
}
.custom-breadcrumb .parent-b {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 24px;
    color: #767676;
    font-weight: 600;
}
.custom-breadcrumb .current-b {
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 24px;
    color: #1A1A1A;
    font-weight: 600;
}
.sidebar-pp {
    width: 265px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-pp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-pp li {
    margin-bottom: 12px;
}
.sidebar a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    color: #767676;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 24px;
}

.sidebar a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #767676;
    position: absolute;
    left: 0;
    top: 0.60em;
    opacity: 0;
    transition: opacity .3s ease;
}

.sidebar a.active {
    color: #767676;
}

.sidebar a.active::before {
    opacity: 1;
}

.pp-information > div[id] {
    scroll-margin-top: 40px;
}

.pp-information p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 24px;
}

.pp-information ul li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 24px;
}

.sidebar a:hover {
    color: #767676;
}
h6.last-information {
    margin-bottom: 40px;
}
h6.last-information span.text {
    font-size: 14px;
    text-transform: uppercase;
    color: #147F7F;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.08em;
}
h6.last-information span.date {
    font-size: 14px;
    text-transform: uppercase;
    color: #0F3F4A;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.08em;
}
div.pp-information h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 48px;
    letter-spacing: -2px;
}
div.sidebar-pp h6 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
div.pp-information .section-title{
    font-family: "Bricolage Grotesque", sans-serif;
}
/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {

    .studio-privacy-page {
        gap: 30px;
        padding: 32px 20px;
    }

    .sidebar-pp {
        width: 220px;
    }

    .sidebar a {
        font-size: 14px;
        line-height: 1.5;
    }

    div.pp-information h2 {
        font-size: 56px;
        line-height: 1;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 767px) {

    .studio-privacy-page {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
    }

    .sidebar-pp {
        width: 100%;
        position: static;
        order: 1;
    }

    .pp-information {
        order: 2;
    }

    .sidebar-pp h6 {
        margin-bottom: 12px;
    }

    .sidebar {
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        padding: 16px;
        background: #fff;
    }

    .sidebar-pp ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-pp li {
        margin-bottom: 0;
    }

    .sidebar a {
        display: block;
        font-size: 14px;
        line-height: 1.5;
        padding-left: 16px;
    }

    .sidebar a::before {
        top: 11px;
    }

    div.pp-information h2 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    h6.last-information {
        margin-bottom: 24px;
    }

    h6.last-information span.text,
    h6.last-information span.date {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .pp-information p,
    .pp-information li {
        font-size: 15px;
        line-height: 1.7;
    }

    .pp-information ul {
        padding-left: 20px;
    }
}

/* =========================
   Small Mobile
========================= */
@media screen and (max-width: 480px) {

    .studio-privacy-page {
        padding: 20px 12px;
    }

    div.pp-information h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 22px;
    }

    .sidebar {
        padding: 14px;
    }

    .sidebar a {
        font-size: 13px;
    }

    .pp-information p,
    .pp-information li {
        font-size: 14px;
    }
}